home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / dc1 / save / todo < prev    next >
Encoding:
Text File  |  1993-01-17  |  980 b   |  40 lines

  1.  
  2.     do defered structures work ?
  3.     what about embedded structs ?
  4.     uword - uword comparison failure!
  5.  
  6.  
  7.  
  8.     -------
  9.  
  10.     genmisc - TF_REGCALL handling of procedure assignments !
  11.  
  12.  
  13.  
  14.     fuu[i] /= 3;    fuu char ary - failsq
  15.     char /= x;    fails...
  16.  
  17.     double d1,d2 d1 % d2 -- better error message (blockopt struct?)
  18.  
  19.     bitfields:    a += b; where a is a bit field.
  20.     bitfields:    error msg on &bitfield
  21.  
  22.     optimize if (const-exp), while (0), for (; 0;) ... watch out for
  23.     goto labels inside though.
  24.  
  25.     STRUCTURAL RETURNS    :   Use slightly different naming convension for
  26.                 subroutines that return structures so no mistake
  27.                 is made.  For such subroutines a pointer to
  28.                 the destination must be supplied.
  29.  
  30.     s_<label>        routine returning a structure
  31.  
  32.     p_<label>        prototyped routine when treated differently from
  33.                 normal routine
  34.  
  35.  
  36.     goto labels -> must put in different domain than variables
  37.  
  38.     auto initialization of auto arrays and things.
  39.  
  40.